home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 43
/
Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso
/
-serious-
/
sound
/
mp3-taged
/
install
next >
Wrap
Text File
|
1999-06-14
|
2KB
|
102 lines
; MP3-TagED v2.3 Installer Script
(set @default-dest "")
(set #bad-kick
(cat "\n\nSorry! You must have Workbench 2.0 or"
"higher to to use this package."))
(set #hello-message
(cat "\n\n\nMP3-TagED v2.3\n\nCopyright © 1998-1999 Christian Vigård\nAll Rights Reserved\n\nThis program is released as EMAILWARE\n\nKeyfile is 100% FREE - Reads doc on how to register.\n"))
(set #mp3taged-dest
(cat "Please select a directory for MP3-TagED"
"\n(A directory will be created)."))
(set #copy-gtlayout
(cat "\nInstalling gtlayout.library"))
(set #copy-reqtools
(cat "\nInstalling reqtools.library"))
(set #copy-popupmenu
(cat "\nInstalling popupmenu.library"))
(set #def-help
(cat "\nNo help available"))
(set #copy-files
(cat "\nCopying files..."))
; ------------------------------------------
(if (< (/ (getversion) 65536) 37)
(
(abort #bad-kick)
))
; -------------------------------------------
(message #hello-message)
(complete 0)
(set destdir
(askdir
(prompt #mp3taged-dest)
(default "Work:")
(help #def-help)
)
)
(set destdir (tackon destdir "MP3-TagED"))
(makedir destdir
(infos)
)
(complete 30)
(copyfiles
(prompt #copy-files)
(source "")
(pattern "#?MP3-TagED#?")
(dest destdir)
(infos)
)
(complete 50)
(copylib
(confirm)
(source "libs/gtlayout.library")
(dest "libs:")
(help #def-help)
(prompt #copy-gtlayout)
)
(complete 70)
(copylib
(confirm)
(source "libs/reqtools.library")
(dest "libs:")
(help #def-help)
(prompt #copy-reqtools)
)
(complete 90)
(copylib
(confirm)
(source "libs/popupmenu.library")
(dest "libs:")
(help #def-help)
(prompt #copy-popupmenu)
)
(complete 100)
(exit "\n\nInstallation of MP3-TagED v2.3 is now done!\n\n"
"Please register this program if you like it!!\n"
)